home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000091_news@newsmaster….columbia.edu _Sun May 17 23:17:48 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id XAA18374
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 17 May 1998 23:17:47 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id XAA05346
  7.     for kermit.misc@watsun; Sun, 17 May 1998 23:17:47 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!paralynx!news.mindlink.net!paralynx-2!paralynx!paralynx-1!uniserve!newsfeeds.sol.net!wn3feed!worldnet.att.net!204.127.130.5!mtf1!newsadm
  9. From: Bernie <bfb@worldnet.att.net>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: TAKE command file error problem
  12. Date: Mon, 18 May 1998 01:55:41 +0000
  13. Organization: AT&T WorldNet Services
  14. Lines: 53
  15. Message-ID: <6jo4eu$h2b@bgtnsc03.worldnet.att.net>
  16. References: <6jni7f$kh6@bgtnsc03.worldnet.att.net> <6jnq14$m06$1@apakabar.cc.columbia.edu>
  17. NNTP-Posting-Host: 12.68.112.244
  18. Mime-Version: 1.0
  19. Content-Type: text/plain; charset=us-ascii
  20. Content-Transfer-Encoding: 7bit
  21. X-Mailer: Mozilla 4.04 [en] (X11; I; Linux 2.0.31 i586)
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:8744
  23.  
  24. The problem was an xif statement which
  25. evidently was too long.  I simply added an
  26. additional xif dividing the original in half.
  27.  
  28. -Thanks
  29.  
  30.  
  31.  
  32. Frank da Cruz wrote:
  33.  
  34. > In article <6jni7f$kh6@bgtnsc03.worldnet.att.net>,
  35. > Bernie  <bfb@worldnet.att.net> wrote:
  36. > : I have a macro defined as follows:
  37. > :
  38. > : define work -
  39. > : define recipients bernie@cji.com,-
  40. > : define mtype multitech,-
  41. > : define mline /dev/term/i1H,-
  42. > : define mspeed 19200,-
  43. > : define ddir /home/oper
  44. > :
  45. > : Then later in the script, the following is executed:
  46. > :
  47. > : set line \m(mline)
  48. > : if failure goto errhandler
  49. > : set speed \m(mspeed)
  50. > : if failure goto errhandler
  51. > :
  52. > : When the "set line \m(mline)" is executed, it generates the following
  53. > : error:
  54. > :
  55. > : ?Error in TAKE command file: Line too long or contains NUL characters
  56. > :
  57. > : This same script works ok at home with C-Kernmit for linux.  I only
  58. > : encounter the error when I run the script on our UnixWare 2.02 server at
  59. > : work, using the same version number, 6.0.192.
  60. > :
  61. > It checks out OK here.  Are you sure you invoked the WORK macro after it
  62. > was defined and before the SET LINE command was given?
  63. >
  64. > Try adding ECHO commands to debug:
  65. >
  66. >   echo SET LINE: "\m(mline)"
  67. >   set line \m(mline)
  68. >   if failure goto errhandler
  69. >   echo SET SPEED: "\m(mspeed)"
  70. >   set speed \m(mspeed)
  71. >   if failure goto errhandler
  72. >
  73. > - Frank
  74.  
  75.  
  76.